home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / cross / GBDK-2.0.lha / GBDK / include / string.h < prev    next >
C/C++ Source or Header  |  1998-10-26  |  550b  |  47 lines

  1. #ifndef _STRING_H
  2. #define _STRING_H
  3.  
  4. #include <types.h>
  5.  
  6. void *
  7. memset(void *s1,
  8.        UBYTE c, 
  9.        UWORD n);
  10.  
  11. void *
  12. memcpy(void *s1,
  13.        const void *s2,
  14.        UWORD n);
  15.  
  16. char *
  17. strcat(char *s1,
  18.        const char *s2);
  19.  
  20. BYTE
  21. strcmp(const char *s1,
  22.        const char *s2);
  23.  
  24. char *
  25. strcpy(char *s1,
  26.        const char *s2);
  27.  
  28. BYTE
  29. strlen(const char *s);
  30.  
  31. char *
  32. strncat(char *s1,
  33.     const char *s2,
  34.     UBYTE n);
  35.  
  36. BYTE
  37. strncmp(const char *s1,
  38.     const char *s2,
  39.     UBYTE n);
  40.  
  41. char *
  42. strncpy(char *s1,
  43.     const char *s2,
  44.     UBYTE n);
  45.  
  46. #endif /* _STRING_H */
  47.